Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 13, 2025

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) 22.18.1 -> 22.18.3 age confidence
eslint-plugin-unicorn 61.0.1 -> 61.0.2 age confidence
typescript-eslint (source) 8.42.0 -> 8.43.0 age confidence
zod (source) 4.1.5 -> 4.1.8 age confidence

Release Notes

sindresorhus/eslint-plugin-unicorn (eslint-plugin-unicorn)

v61.0.2

Compare Source

  • throw-new-error: Fix false positive for Effect library (#​2740) 0ddf5ea
  • no-useless-undefined: Ignore Set#delete(undefined) (#​2739) 99acd27
  • prefer-includes and prefer-array-index-of: Prevent crash on Vue files (#​2645) a1da518

typescript-eslint/typescript-eslint (typescript-eslint)

v8.43.0

Compare Source

🩹 Fixes
  • eslint-plugin: [no-deprecated] should report deprecated exports and reexports (#​11359)
❤️ Thank You

You can read about our versioning strategy and releases on our website.

colinhacks/zod (zod)

v4.1.8

Compare Source

v4.1.7

Compare Source

v4.1.6

Compare Source


Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the renovate label Sep 13, 2025
@renovate renovate bot enabled auto-merge (squash) September 13, 2025 23:45
@github-actions
Copy link

This change updates several key dependencies across both packages to their latest patch versions, ensuring compatibility and addressing minor improvements or fixes without altering end-user functionality.

Walkthrough

  • Chore: Bump zod from 4.1.5 to 4.1.8 for improved schema validation
  • Chore: Upgrade @types/node from 22.18.1 to 22.18.3 for updated type definitions
  • Chore: Update eslint-plugin-unicorn to 61.0.2 for linting enhancements
  • Chore: Upgrade typescript-eslint from 8.42.0 to 8.43.0 for better TypeScript rule support

Model: o4-mini | Prompt Tokens: 758 | Completion Tokens: 671

Copy link

@github-actions github-actions bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We’re sharing gentle observations from an AI-powered code review to inspire improvements. These suggestions are meant as guidance, not strict requirements. Please pick and adapt what resonates with your workflow. You remain in control—your expertise and creative decisions shape the final results while AI offers support along the way.
Model: o4-mini | Prompt Tokens: 1330 | Completion Tokens: 3601

"octokit": "5.0.3",
"parse-diff": "0.11.1",
"zod": "4.1.5"
"zod": "4.1.8"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You’re pinning zod to an exact patch version (4.1.8). To allow non-breaking updates and reduce future manual bumps, consider using a caret range for patch updates. For example:

{
  "dependencies": {
    "zod": "^4.1.8"
  }
}

"octokit": "5.0.3",
"parse-diff": "0.11.1",
"zod": "4.1.5"
"zod": "4.1.8"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You’re pinning zod to an exact patch version (4.1.8). To allow non-breaking updates and reduce future manual bumps, consider using a caret range for patch updates. For example:

{
  "dependencies": {
    "zod": "^4.1.8"
  }
}

Comment on lines 32 to 44
"devDependencies": {
"@eslint/js": "9.35.0",
"@types/node": "22.18.1",
"@types/node": "22.18.3",
"@vercel/ncc": "0.38.3",
"eslint": "9.35.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-sonarjs": "3.0.5",
"eslint-plugin-unicorn": "61.0.1",
"eslint-plugin-unicorn": "61.0.2",
"prettier": "3.6.2",
"tsx": "4.20.5",
"typescript": "5.9.2",
"typescript-eslint": "8.42.0",
"typescript-eslint": "8.43.0",
"yaml": "2.8.1"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The same set of devDependencies is duplicated across multiple packages. You can DRY this up by moving common dev dependencies into the root package.json (if using a monorepo) and leveraging workspaces. For example:

// root package.json
{
  "private": true,
  "workspaces": ["pr-review", "pr-summary"],
  "devDependencies": {
    "@eslint/js": "9.35.0",
    "@types/node": "^22.18.3",
    "@vercel/ncc": "0.38.3",
    "eslint": "9.35.0",
    "eslint-plugin-import": "2.32.0",
    "eslint-plugin-sonarjs": "3.0.5",
    "eslint-plugin-unicorn": "^61.0.2",
    "prettier": "3.6.2",
    "tsx": "4.20.5",
    "typescript": "5.9.2",
    "typescript-eslint": "^8.43.0",
    "yaml": "2.8.1"
  }
}

Comment on lines 31 to 43
"devDependencies": {
"@eslint/js": "9.35.0",
"@types/node": "22.18.1",
"@types/node": "22.18.3",
"@vercel/ncc": "0.38.3",
"eslint": "9.35.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-sonarjs": "3.0.5",
"eslint-plugin-unicorn": "61.0.1",
"eslint-plugin-unicorn": "61.0.2",
"prettier": "3.6.2",
"tsx": "4.20.5",
"typescript": "5.9.2",
"typescript-eslint": "8.42.0",
"typescript-eslint": "8.43.0",
"yaml": "2.8.1"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The same set of devDependencies is duplicated across multiple packages. You can DRY this up by moving common dev dependencies into the root package.json (if using a monorepo) and leveraging workspaces. For example:

// root package.json
{
  "private": true,
  "workspaces": ["pr-review", "pr-summary"],
  "devDependencies": {
    "@eslint/js": "9.35.0",
    "@types/node": "^22.18.3",
    "@vercel/ncc": "0.38.3",
    "eslint": "9.35.0",
    "eslint-plugin-import": "2.32.0",
    "eslint-plugin-sonarjs": "3.0.5",
    "eslint-plugin-unicorn": "^61.0.2",
    "prettier": "3.6.2",
    "tsx": "4.20.5",
    "typescript": "5.9.2",
    "typescript-eslint": "^8.43.0",
    "yaml": "2.8.1"
  }
}

@renovate renovate bot merged commit 32694ee into main Sep 13, 2025
13 checks passed
@renovate renovate bot deleted the renovate/non-major-dependencies branch September 13, 2025 23:47
github-actions bot pushed a commit that referenced this pull request Sep 13, 2025
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant